a5a4245c05450003438cec546236ee488a349043,java/openapi/src/com/intellij/util/xml/converters/values/ClassValueConverter.java,ClassValueConverter,getScope,#Project#Module#PsiFile#,56

Before Change


     }
     final boolean inTests = ProjectRootManager.getInstance(project).getFileIndex().isInTestSourceContent(file);

     return module.getModuleRuntimeScope(inTests).union(module.getModuleWithDependenciesAndLibrariesScope(inTests));
  }
}

After Change


     }
     final boolean inTests = ProjectRootManager.getInstance(project).getFileIndex().isInTestSourceContent(file);

     return module.getModuleRuntimeScope(inTests);
  }
}